12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .rewardBox {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- flex: 1;
- grid-column-gap: 5px;
- min-width: 0;
- max-width: 1.7rem;
- }
- .rewardItem {
- display: flex;
- align-items: center;
- }
- .Free {
- width: 40px;
- height: 30px;
- display: block;
- position: relative;
- &::after {
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 40px;
- background-image: url("/deposite/free.png");
- background-size: 100% 100%;
- background-position: center center;
- }
- }
- .Bonus {
- width: 40px;
- height: 30px;
- display: block;
- position: relative;
- &::after {
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 40px;
- background-image: url("/deposite/bonus.png");
- background-size: 100% 100%;
- background-position: center center;
- }
- }
- .Replay {
- width: 40px;
- height: 30px;
- display: block;
- position: relative;
- &::after {
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 40px;
- background-image: url("/deposite/repalay.png");
- background-size: 100% 100%;
- background-position: center center;
- }
- }
- .Saldo {
- width: 40px;
- height: 30px;
- display: block;
- position: relative;
- &::after {
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 40px;
- background-image: url("/deposite/Saldo.png");
- background-size: 100% 100%;
- background-position: center center;
- }
- }
|